home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / ODDesLst.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  794 b   |  37 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _ODDESLST_
  4. #define _ODDESLST_
  5.  
  6. #ifndef _ODDESC_
  7. #include "ODDesc.idl"
  8. #endif
  9.  
  10. //==============================================================================
  11. // Classes defined in this interface
  12. //==============================================================================
  13.  
  14. interface  ODDescList;
  15.  
  16. //==============================================================================
  17. // ODDescList
  18. //==============================================================================
  19.  
  20. interface ODDescList : ODDesc
  21. {
  22.     void InitODDescList();
  23. #ifdef    __SOMIDL__
  24.     implementation
  25.     {
  26.         majorversion = 1; minorversion = 0;
  27.  
  28.           functionprefix = ODDescList;
  29.  
  30.         releaseorder:
  31.             InitODDescList;
  32.     };
  33. #endif
  34. };
  35.  
  36. #endif    //#    _ODDESLST_
  37.